Passed
Pull Request — master (#42)
by
unknown
02:34
created

selectors.ts ➔ byTestId   A

Complexity

Conditions 1

Size

Total Lines 2
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 2
dl 0
loc 2
rs 10
c 0
b 0
f 0
cc 1
1
export function byTestId(testId: string) {
2
    return `[data-test-id="${testId}"]`;
3
}
4